home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue30 / delcom / PasMenu / Contmenu.dpr < prev    next >
Encoding:
Text File  |  1998-01-05  |  543 b   |  18 lines

  1. // You need to merge the ContMenu.reg file into the registry before you can use
  2. // shell extension.   This Context Menu shell extension will allow you to right
  3. // click on DPR files from the Explorer and Compile them using the DCC32.exe
  4. // command line compiler.
  5.  
  6. library contmenu;
  7.  
  8. uses
  9.     SysUtils, Classes, ComServ, ComObj, ContextM in 'ContextM.pas',
  10.     ShlObj in 'Shlobj.pas';
  11.  
  12. exports
  13.     DllGetClassObject resident,
  14.     DllCanUnloadNow resident,
  15.     DllRegisterServer resident,
  16.     DllUnregisterServer resident;
  17. end.
  18.